* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}
.contact-number {
  display: inline-block;
  margin-left: 15px;
  font-size: 15px;
  font-weight: bold;
  color: #000;
  vertical-align: middle;
}

/* Mobile view ke liye hide */
@media (max-width: 767px) {
  .contact-number {
    display: none;
  }
}

.top-bar {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  color: #000;
  font-size: 14px;
  position: relative;
}


.top-bar .logo img {
  height: 50px;
}

.top-bar .right {
  white-space: nowrap;
  font-weight: bold;
  color: black;
  padding: 6px 16px;
  border-radius: 25px;
  font-style: italic;
}

.top-bar .right:hover{
  color: #0b6337b9;
}

.scrolling-wrapper {
  flex: 1;
  max-width: 770px;
  margin: 0 auto;
  overflow: hidden;
  padding: 5px 10px;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  color: red;
  font-weight: bold;
  font-size: 16px;
  animation: scroll-left 15s linear infinite;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 26px;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 70px;
  cursor: pointer;
  z-index: 1001;
  border: 1px solid #000;
  border-radius: 5px;
}


.scrolling-text {
      width: 100%;
      overflow: hidden;
    }

    .center  {
      display: inline-block;
      white-space: nowrap;
      color: red;
      font-weight: bold;
      font-size: 16px;
      animation: scroll-left 15s linear infinite;
      padding: 10px 0;
    }

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media(max-width:900px){
  .logo img {
    display: none;
  }
  .right {
    display: none;
  }
}

@media (max-width: 600px) {
  .scrolling-wrapper {
    max-width: 100%;
    padding: 5px 15px;
  }

  .scrolling-text {
    font-size: 14px;
  }
}

.main-header {
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-bottom: 1px solid #ccc;
  z-index: 9999;
  position: relative;
}

.close-btn{
  display: none;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav ul li a {
  text-decoration: none;
  color: wheat;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #e60000;
}
@media (max-width: 900px) {
  .top-bar .logo img {
    display: none;
  }

  .main-header {
    background: none;
  }
  
  .top-bar .right {
    display: none;
  }

  .menu-icon {
    display: block;
  }
  
  .close-btn:hover{
    color: #e60000;
  }
  .close-btn{
  display: block;
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  font-weight: bold;
  color: black;
  cursor: pointer;
}

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(8px);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 30px;
  }

  .main-nav ul li a {
    font-size: 22px;
    font-weight: bold;
  }
 
  .menu-toggle:checked + .menu-icon + .main-header .main-nav {
    display: flex;
    flex-direction: column;
  }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
}

.about-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-images {
    flex: 1;
    padding: 10px;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

.about-banner {
  background-image: url('com/Training.jpg'); 
  background-size: cover;
  background-position: center;
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-content {
  color: white;
  text-align: center;
}

.text-content h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: whitesmoke; }

.text-content p {
  font-size: 16px;
  color: #fff;
}

.text-content a {
  color: #2196f3;
  text-decoration: none;
}

.text-content a:hover {
  text-decoration: underline;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
}

.certificates-section {
  padding: 40px 20px;
  text-align: center;
}

.certificates-section h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
}

.certificates-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.certificate-card {
  background-color: white;
  border-radius: 10px;
  width: 240px;
  height: 370px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.certificate-card:hover {
  transform: translateY(-5px);
}

.card-title {
  background-color: red;
  color: white;
  font-weight: bold;
  padding: 10px;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
}

.certificate-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 1px solid #ccc;
}

.download-btn {
  background-color: #007bff;
  color: white;
  padding: 12px 0;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  margin: 10px auto 20px;
  width: 85%;
  display: block;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.3);
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #0056b3;
}

.footer {
  background-color: black;
  color: #ffffff;
  padding: 40px 20px 0 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand .logo {
  height: 60px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  color: #ff2c2c;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #d3d3d3;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links,
.footer-services,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  color: #ff2c2c;
  margin-bottom: 15px;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-services a,
.footer-contact a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
}

.footer-contact p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #ffffff;
}


.footer-bottom {
  margin-top: 30px;
  background-color: #e60000;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
}
